DSV Library
Type
library
Description
This script library implements portions of the specification for Delimiter-Separated Values (DSV), as outlined in RFC 4180. Utilize this library to seamlessly import and export tabular data formats such as CSV (Comma-Separated Values), TSV (Tab-Separated Values), and similar formats.
Associated Syntax
Command
| Name | Summary | Syntax |
|---|---|---|
| csvExportToFile | Converts a data array into a delimiter separated string and saves it into a file | csvExportToFile <pArray>,<pOptions>,<pFile> |
| tsvImport | Parse tabular data from a text into an array | tsvImport <pText>,<pOptions>,<rArray> |
| tsvImportFromFile | Parse tabular data from a TSV file into an array | tsvImportFromFile <pFile>,<pOptions>,<rArray> |
| tsvExportToFile | Converts a data array into a delimiter separated string and saves it into a file | tsvExportToFile <pArray>,<pOptions>,<pFile> |
| csvExport | Converts a data array into a delimiter separated string | csvExport <pArray>,<pOptions>,<rText> |
| csvImport | Parse tabular data from a text into an array | csvImport <pText>,<pOptions>,<rArray> |
| csvImportFromFile | Parse tabular data from a CSV file into an array | csvImportFromFile <pFile>,<pOptions>,<rArray> |
| tsvExport | Converts a data array into a delimiter separated string | tsvExport <pArray>,<pOptions>,<rText> |